home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 September / CHIP_CD_2004-09.iso / macos / pack1 / files / MaxBulkMailer.sit / MaxBulk Mailer / Examples / Filemaker / FileMaker integration < prev    next >
Text File  |  2003-02-24  |  2KB  |  54 lines

  1.  MaxBulk Mailer⌐ [FileMaker]
  2. [M A X P R O G] - February 2003 - Copyright ⌐ 2000 - 2003
  3. Please read the enclosed License Agreement for further legal information.
  4. MAX Programming, LLC -  All rights reserved worldwide.
  5. E-mail: support@maxprog.com - Web: http://www.maxprog.com
  6.  
  7.  
  8. MaxBulk Mailer allows you to export data directly from inside FileMaker using very simple scripts and AppleEvents. You can add this capability to your existing databases following a few easy steps. It is basically just a matter of creating a calculation field with a given format. 
  9.  
  10. Table of Contents
  11.  
  12. 1.- Add a calculation field
  13. 2.- Create the export script
  14. 3.- Define AppleEvent
  15. 4.- Troubleshooting
  16. 5.- Legal Disclaimer
  17.  
  18.  
  19. 1.- Add a calculation field:
  20.  
  21. You create a field with all the data to export delimited with slash this way:
  22.  
  23. Firstname\ Surname\Company\ Email\Opt1\ Opt2\ Opt3\ Opt4\ Opt5\ Opt6\ Opt7\ Opt8\ Opt9\ Opt10"
  24. or if not custom data needed just "Firstname\ Surname\Company\ Email\\\\\\\\\\"
  25.  
  26. You can do this easily creating a calculation field and a formula like:
  27. Firstname & "\" & Surname & "\" & Company & "\" & Email & "\" & Opt1 &"\" & Opt2 & "\" & Opt3 & "\" & Opt4 & "\" & Opt5 & "\" & Opt6 & "\" & Opt7 & "\" & Opt8 & "\" & Opt9 & "\" & Opt10
  28. where 'Firstname', 'Surname'...should be replaced with your database fields.
  29. or if you don't use optional fields, just Firstname & "\" & Surname & "\" & Company & "\" & Email & "\\\\\\\\\\"
  30.  
  31. 2.- Create the export script:
  32.  
  33. Then create a script and assign it to a button. The script should send an AppleEvent to MaxBulk.
  34.  
  35. 3.- Define AppleEvent:
  36.  
  37. Something like:
  38. Send Apple Event ["MaxBulk Mailer", "MaxB", "DATA"]
  39.  
  40. 4.- Troubleshooting
  41.  
  42. If you are having troubles getting started or using MaxBulk Mailer, feel free to ask us using our support inquiry form located at http://inquiry.maxprog.com/. Please be as descriptive as possible.
  43.  
  44.  
  45. 5.- Legal Disclaimer
  46.  
  47. BY USING THIS DOCUMENT, YOU ARE AGREEING TO BE BOUND BY THE TERMS PRESENTED BELOW:
  48.  
  49. Use the information contained in this document at your own risk. Under no circumstances, including negligence, shall Max Programming be liable for any incidental, special or consequential damages that result from the use of this document, even if advised of the possibility of such damages.
  50.  
  51. -- 
  52. Last Updated on February 12th, 2003
  53. ⌐ Max Programming, LLC
  54.